.footer {
    width: 100%;
    margin: 0px;
    background-color: white;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    font-family: Arial, sans-serif;
}

.main::after {
    content: "";
    clear: both;
    display: table;
}

.main {
    width: 100%;
}

.footer .contact-info {
    float: left;
    display: inline-block;
    margin-left: 50px;
    padding: 20px;
    font-size: 18px;
}

.footer .button {
    display: block;
    margin: auto;
    margin-top: 35px;
    background-color: #FCAB4C;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    padding: 15px 7px;
    width: 165px;
    color: black;
    text-decoration: none;
    text-align: center;
}

.footer .location {
    float: right;
    display: inline-block;
    margin-right: 50px;
    padding: 20px;
    font-size: 18px;
}

.footer .center{
    display: inline-block;
    width: 5px;
    margin: auto;
}

.legal {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: dimgrey;
}

.legal p {
    padding: 10px;
}

.legal a {
    font-size: 12px;
    color: dimgrey;
}


@media only screen and (max-width: 680px) {
    .footer {
        display: inline-flex;
        flex-direction: column;
        text-align: center;
    }

        .footer .contact-info {
            float: none;
            margin-left: 0px;
            padding-top: 30px;
        }

        .footer .location {
            float: none;
            margin-right: 0px;
            padding-top: 30px;
        }

        .legal {
            margin-top: 20px;
        }
}

@media only screen and (min-width: 800px) {


    .footer .contact-info {
        font-size: 18px;
    }

    .footer .location {
        font-size: 18px;
    }
}
